curl --request GET \
--url http://localhost:50001/events/{id}{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"eventDate": "<string>",
"basePrice": 123
}Retrieve a specific event by its ID without seatmap details
curl --request GET \
--url http://localhost:50001/events/{id}{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"eventDate": "<string>",
"basePrice": 123
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/JostinAlvaradoS/ticketing_project_week0/llms.txt
Use this file to discover all available pages before exploring further.
550e8400-e29b-41d4-a716-446655440000curl -X GET http://localhost:50001/events/550e8400-e29b-41d4-a716-446655440000 \
-H "Content-Type: application/json"
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Coldplay - Live in Santiago",
"description": "World tour 2026",
"eventDate": "2026-03-15T19:00:00Z",
"basePrice": 50.00
}
404 Not Found
400 Bad Request
{
"error": "Invalid event ID format",
"message": "The event ID must be a valid UUID"
}
500 Internal Server Error
{
"error": "Internal server error",
"message": "An unexpected error occurred while fetching the event"
}
id parameter must be a valid UUID (GUID) format